home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / MacPerl ƒ / Perl Source ƒ / Perl / usersub.c < prev    next >
Text File  |  1993-10-23  |  4KB  |  198 lines

  1. /* $RCSfile: usersub.c,v $$Revision: 4.0.1.2 $$Date: 92/06/08 16:04:24 $
  2.  *
  3.  *  This file contains stubs for routines that the user may define to
  4.  *  set up glue routines for C libraries or to decrypt encrypted scripts
  5.  *  for execution.
  6.  *
  7.  * $Log:    usersub.c,v $
  8.  * Revision 4.0.1.2  92/06/08  16:04:24  lwall
  9.  * patch20: removed implicit int declarations on functions
  10.  * 
  11.  * Revision 4.0.1.1  91/11/11  16:47:17  lwall
  12.  * patch19: deleted some unused functions from usersub.c
  13.  * 
  14.  * Revision 4.0  91/03/20  01:55:56  lwall
  15.  * 4.0 baseline.
  16.  * 
  17.  */
  18.  
  19. #include "EXTERN.h"
  20. #include "perl.h"
  21.  
  22. static int usersub();
  23.  
  24. int
  25. userinit()
  26. {
  27.     return 0;
  28. }
  29.  
  30. /* Be sure to refetch the stack pointer after calling these routines. */
  31.  
  32. int
  33. callback(subname, sp, gimme, hasargs, numargs)
  34. char *subname;
  35. int sp;            /* stack pointer after args are pushed */
  36. int gimme;        /* called in array or scalar context */
  37. int hasargs;        /* whether to create a @_ array for routine */
  38. int numargs;        /* how many args are pushed on the stack */
  39. {
  40.     static ARG myarg[3];    /* fake syntax tree node */
  41.     int arglast[3];
  42.  
  43.     arglast[2] = sp;
  44.     sp -= numargs;
  45.     arglast[1] = sp--;
  46.     arglast[0] = sp;
  47.  
  48.     if (!myarg[0].arg_ptr.arg_str)
  49.     myarg[0].arg_ptr.arg_str = str_make("",0);
  50.  
  51.     myarg[1].arg_type = A_WORD;
  52.     myarg[1].arg_ptr.arg_stab = stabent(subname, FALSE);
  53.  
  54.     myarg[2].arg_type = hasargs ? A_EXPR : A_NULL;
  55.  
  56.     return do_subr(myarg, gimme, arglast);
  57. }
  58.  
  59. int
  60. callv(subname, sp, gimme, argv)
  61. char *subname;
  62. register int sp;    /* current stack pointer */
  63. int gimme;        /* called in array or scalar context */
  64. register char **argv;    /* null terminated arg list, NULL for no arglist */
  65. {
  66.     register int items = 0;
  67.     int hasargs = (argv != 0);
  68.  
  69.     astore(stack, ++sp, Nullstr);    /* reserve spot for 1st return arg */
  70.     if (hasargs) {
  71.     while (*argv) {
  72.         astore(stack, ++sp, str_2mortal(str_make(*argv,0)));
  73.         items++;
  74.         argv++;
  75.     }
  76.     }
  77.     return callback(subname, sp, gimme, hasargs, items);
  78. }
  79.  
  80. /*
  81.  * The following is supplied by John Macdonald as a means of decrypting
  82.  * and executing (presumably proprietary) scripts that have been encrypted
  83.  * by a (presumably secret) method.  The idea is that you supply your own
  84.  * routine in place of cryptfilter (which is purposefully a very weak
  85.  * encryption).  If an encrypted script is detected, a process is forked
  86.  * off to run the cryptfilter routine as input to perl.
  87.  */
  88.  
  89. #ifdef CRYPTSCRIPT
  90.  
  91. #include <signal.h>
  92. #ifdef I_VFORK
  93. #include <vfork.h>
  94. #endif
  95.  
  96. #ifdef CRYPTLOCAL
  97.  
  98. #include "cryptlocal.h"
  99.  
  100. #else    /* ndef CRYPTLOCAL */
  101.  
  102. #define    CRYPT_MAGIC_1    0xfb
  103. #define    CRYPT_MAGIC_2    0xf1
  104.  
  105. void
  106. cryptfilter( fil )
  107. FILE *    fil;
  108. {
  109.     int    ch;
  110.  
  111.     while( (ch = getc( fil )) != EOF ) {
  112.     putchar( (ch ^ 0x80) );
  113.     }
  114. }
  115.  
  116. #endif    /* CRYPTLOCAL */
  117.  
  118. #ifndef MSDOS
  119. static FILE    *lastpipefile;
  120. static int    pipepid;
  121.  
  122. #ifdef VOIDSIG
  123. #  define    VOID    void
  124. #else
  125. #  define    VOID    int
  126. #endif
  127.  
  128. FILE *
  129. mypfiopen(fil,func)        /* open a pipe to function call for input */
  130. FILE    *fil;
  131. VOID    (*func)();
  132. {
  133.     int p[2];
  134.     STR *str;
  135.  
  136.     if (pipe(p) < 0) {
  137.     fclose( fil );
  138.     fatal("Can't get pipe for decrypt");
  139.     }
  140.  
  141.     /* make sure that the child doesn't get anything extra */
  142.     fflush(stdout);
  143.     fflush(stderr);
  144.  
  145.     while ((pipepid = fork()) < 0) {
  146.     if (errno != EAGAIN) {
  147.         close(p[0]);
  148.         close(p[1]);
  149.         fclose( fil );
  150.         fatal("Can't fork for decrypt");
  151.     }
  152.     sleep(5);
  153.     }
  154.     if (pipepid == 0) {
  155.     close(p[0]);
  156.     if (p[1] != 1) {
  157.         dup2(p[1], 1);
  158.         close(p[1]);
  159.     }
  160.     (*func)(fil);
  161.     fflush(stdout);
  162.     fflush(stderr);
  163.     _exit(0);
  164.     }
  165.     close(p[1]);
  166.     close(fileno(fil));
  167.     fclose(fil);
  168.     str = afetch(fdpid,p[0],TRUE);
  169.     str->str_u.str_useful = pipepid;
  170.     return fdopen(p[0], "r");
  171. }
  172.  
  173. void
  174. cryptswitch()
  175. {
  176.     int ch;
  177. #ifdef STDSTDIO
  178.     /* cheat on stdio if possible */
  179.     if (rsfp->_cnt > 0 && (*rsfp->_ptr & 0xff) != CRYPT_MAGIC_1)
  180.     return;
  181. #endif
  182.     ch = getc(rsfp);
  183.     if (ch == CRYPT_MAGIC_1) {
  184.     if (getc(rsfp) == CRYPT_MAGIC_2) {
  185.         if( perldb ) fatal("can't debug an encrypted script");
  186.         rsfp = mypfiopen( rsfp, cryptfilter );
  187.         preprocess = 1;    /* force call to pclose when done */
  188.     }
  189.     else
  190.         fatal( "bad encryption format" );
  191.     }
  192.     else
  193.     ungetc(ch,rsfp);
  194. }
  195. #endif /* !MSDOS */
  196.  
  197. #endif /* CRYPTSCRIPT */
  198.